12. Quiz: Fix the Error 1 (4-5)

Directions:

Here is a for loop that's supposed to print the numbers 5 through 9. Fix the error!

for (x < 10; x++) {
  console.log(x);
}

Your Code:

Start Quiz:

/*
 * Programming Quiz: Fix the Error 1 (4-5)
 */

// fix the for loop
for (x < 10; x++) {
    console.log(x);
}

INSTRUCTOR NOTE:

Have questions? Head to Knowledge for discussion with the Udacity Community.